mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-08-05 02:38:01 +00:00

* feat: migrate eslint * feat: workspace prettierrc * feat: workspace eslint * chore: format files * build: update yarn.lock * feat: init html extension * feat: html extension first working flow * feat: css class support * feat: update package metadata * feat: check string context * feat: clean code * feat: delete unused yarn.lock
14 lines
319 B
JSON
14 lines
319 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"types": ["mocha", "chai", "node"],
|
|
"target": "es2020",
|
|
"lib": ["es2020"],
|
|
"outDir": "out",
|
|
"rootDir": "src",
|
|
"sourceMap": true,
|
|
"strict": true
|
|
},
|
|
"include": ["src", "scripts"],
|
|
"exclude": ["node_modules/*", "../../node_modules/*"]
|
|
}
|