22 lines
382 B
JSON
22 lines
382 B
JSON
{
|
|
"__comments__": [
|
|
"tsconfig.build.json is used by eslint to constrain files to be checked",
|
|
"tsconfig.json is used by tsc"
|
|
],
|
|
"compilerOptions": {
|
|
"skipLibCheck": true,
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"**/.eslintrc.js",
|
|
"**/*.js",
|
|
"**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"**/node_modules/**",
|
|
"**/dist/**",
|
|
"**/*.d.ts",
|
|
"coverage"
|
|
]
|
|
}
|