mirror of
https://github.com/standardnotes/app.git
synced 2026-01-16 23:01:30 +00:00
22 lines
559 B
JSON
22 lines
559 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2019",
|
|
"moduleResolution": "node",
|
|
"module": "es2020",
|
|
"types": ["node"],
|
|
"allowJs": true,
|
|
"noEmit": false,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"typeRoots": ["./app/@types", "./node_modules/@types"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@web/*": ["../web/src/javascripts/*"]
|
|
}
|
|
},
|
|
"include": ["app/**/*"],
|
|
"exclude": ["node_modules", "app/dist"],
|
|
"files": ["app/index.ts", "app/javascripts/Renderer/Renderer.ts"]
|
|
}
|