lava-oushudb-dt-sql-parser/tsconfig.json

41 lines
932 B
JSON
Raw Normal View History

2019-01-28 20:25:26 +08:00
{
"compilerOptions": {
2020-09-11 18:47:53 +08:00
"outDir": "./dist/",
2023-05-04 10:13:05 +08:00
"baseUrl": "./",
"sourceMap": true,
2019-01-28 20:25:26 +08:00
"allowJs":true,
"target": "es6",
2023-05-04 10:13:05 +08:00
"module": "ESNext",
"moduleResolution": "node",
"declaration": true,
2020-08-28 13:29:47 +08:00
"noUnusedLocals": true,
"noUnusedParameters": false,
2023-05-04 10:13:05 +08:00
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
2023-05-04 10:13:05 +08:00
"paths": {
"antlr4": [
"node_modules/antlr4/src/antlr4/index"
]
},
"types": [
"node",
"jest",
"antlr4"
],
2020-08-28 13:29:47 +08:00
"typeRoots": [
"node",
"node_modules/@types",
2023-05-04 10:13:05 +08:00
"./src/typings",
"node_modules/antlr4/**/*"
2020-08-28 13:29:47 +08:00
]
2019-01-28 20:25:26 +08:00
},
"include": [
"./src/**/*"
],
2019-05-14 16:57:09 +08:00
"typeAcquisition": {
"include": [
"jest"
]
}
2019-01-28 20:25:26 +08:00
}