2019-03-27 17:27:58 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-01-11 19:05:45 +03:00
|
|
|
"declaration": true,
|
2020-08-05 21:04:53 +03:00
|
|
|
"downlevelIteration": true,
|
2022-01-11 19:05:45 +03:00
|
|
|
"incremental": true,
|
|
|
|
"module": "commonjs",
|
2019-03-27 17:27:58 +03:00
|
|
|
"noEmitOnError": true,
|
2022-01-11 19:05:45 +03:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2021-12-29 19:36:06 +03:00
|
|
|
"noImplicitOverride": true,
|
2019-03-27 17:27:58 +03:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2022-01-11 19:05:45 +03:00
|
|
|
"outDir": "lib",
|
2022-12-07 20:21:20 +03:00
|
|
|
"preserveConstEnums": true,
|
2022-01-11 19:05:45 +03:00
|
|
|
"resolveJsonModule": true,
|
2019-03-27 17:27:58 +03:00
|
|
|
"rootDir": "src",
|
2022-01-11 19:05:45 +03:00
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
2022-03-01 23:20:28 +03:00
|
|
|
"target": "es6",
|
2022-01-11 19:05:45 +03:00
|
|
|
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
|
2019-03-27 17:27:58 +03:00
|
|
|
},
|
2022-01-11 19:05:45 +03:00
|
|
|
"exclude": ["node_modules"],
|
|
|
|
"include": ["src/**/*.ts", "src/powerquery-parser/localization/templates/*.json"]
|
2019-03-27 17:27:58 +03:00
|
|
|
}
|