mirror of
https://github.com/taichimaeda/markpilot.git
synced 2026-07-22 10:00:25 +00:00
27 lines
627 B
JSON
27 lines
627 B
JSON
{
|
|
"ts-node": {
|
|
// For scraping CLI scripts
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
},
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"lib": ["DOM", "ES5", "ES6", "ES7"],
|
|
"jsx": "react-jsx",
|
|
// For loading model JSON files.
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx"]
|
|
}
|