notebook/tsconfig.json
Benjamin Atkin ed6c989e0d feat: add path split/join for storage keys, begin new structure 🧪
Also add test page and ava for future integration tests
2021-03-18 18:33:24 -04:00

33 lines
606 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "es2016",
"lib": [
"DOM",
"ESNext"
],
"strict": true,
"esModuleInterop": true,
"incremental": true,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"types": [
"vite/client",
"vite-plugin-vue-layouts/client"
],
"paths": {
"~/*": [
"src/*"
]
}
},
"exclude": [
"dist",
"node_modules"
]
}